home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / complib.idb / usr / share / catman / p_man / cat3 / complib / spttrs.z / spttrs
Text File  |  1996-03-14  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. SSSSPPPPTTTTTTTTRRRRSSSS((((3333FFFF))))                                                          SSSSPPPPTTTTTTTTRRRRSSSS((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      SPTTRS - solve a system of linear equations A * X = B with a symmetric
  10.      positive definite tridiagonal matrix A using the factorization A =
  11.      L*D*L**T or A = U**T*D*U computed by SPTTRF
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE SPTTRS( N, NRHS, D, E, B, LDB, INFO )
  15.  
  16.          INTEGER        INFO, LDB, N, NRHS
  17.  
  18.          REAL           B( LDB, * ), D( * ), E( * )
  19.  
  20. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  21.      SPTTRS solves a system of linear equations A * X = B with a symmetric
  22.      positive definite tridiagonal matrix A using the factorization A =
  23.      L*D*L**T or A = U**T*D*U computed by SPTTRF.  (The two forms are
  24.      equivalent if A is real.)
  25.  
  26.  
  27. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  28.      N       (input) INTEGER
  29.              The order of the tridiagonal matrix A.  N >= 0.
  30.  
  31.      NRHS    (input) INTEGER
  32.              The number of right hand sides, i.e., the number of columns of
  33.              the matrix B.  NRHS >= 0.
  34.  
  35.      D       (input) REAL array, dimension (N)
  36.              The n diagonal elements of the diagonal matrix D from the
  37.              factorization computed by SPTTRF.
  38.  
  39.      E       (input) REAL array, dimension (N-1)
  40.              The (n-1) off-diagonal elements of the unit bidiagonal factor U
  41.              or L from the factorization computed by SPTTRF.
  42.  
  43.      B       (input/output) REAL array, dimension (LDB,NRHS)
  44.              On entry, the right hand side matrix B.  On exit, the solution
  45.              matrix X.
  46.  
  47.      LDB     (input) INTEGER
  48.              The leading dimension of the array B.  LDB >= max(1,N).
  49.  
  50.      INFO    (output) INTEGER
  51.              = 0:  successful exit
  52.              < 0:  if INFO = -i, the i-th argument had an illegal value
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.